go/ast.CompositeLit.Lbrace (field)

5 uses

	go/ast (current package)
		ast.go#L317: 		Lbrace     token.Pos // position of "{"
		ast.go#L491: 	return x.Lbrace

	go/parser
		parser.go#L1598: 	return &ast.CompositeLit{Type: typ, Lbrace: lbrace, Elts: elts, Rbrace: rbrace}

	go/printer
		nodes.go#L973: 		p.print(x.Lbrace, token.LBRACE)
		nodes.go#L974: 		p.exprList(x.Lbrace, x.Elts, 1, commaTerm, x.Rbrace, x.Incomplete)